Xbasic

Quoted Xbasic Statement

Description

A quoted Xbasic statement is one where all parts of the statement, except variables, are quoted. You will need to use quoted Xbasic statements with the EVAL() and EVAL_VALID() functions.

For example, if you have the statement a[line], where line is a numeric variable, the following statement will generate an error:

eval_valid("a[line]")

You will have to restate it as:

eval_valid("a[" + line + "]")

See Also